home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 2
/
AACD 2.iso
/
AACD
/
Programming
/
ADOS Guide
/
ADOS commands
/
Request File
< prev
next >
Wrap
Text File
|
1998-02-16
|
618b
|
33 lines
--AMIGADOS GUIDE V2.5--
REQUESTFILE
USE:
The RequestFile command enables the user to call up a File Requester
which will let you select any file or directory.
PATH:
C:
SYSTEM:
3.0
EXAMPLES:
1>REQUESTFILE >ENV: FileName TITLE="File Requester 1"
NOTES:
RequestFile can be integrated with the RequestChoice command thus:
LAB Start
REQUESTFILE >ENV: FileName TITLE="File Requester 1"
REQUESTCHOICE >ENV: YesNo "" "You chose:$FileName*nDo it
again?" "YES" "NO"
IF $YesNo EQ "1"
SKIP start BACK
ENDIF